@charset "UTF-8";

/*
* base
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #4C4948;
  letter-spacing: 0.03em;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: sans-serif;
  }
}

a:hover {
  opacity: 0.7;
}

@font-face {
  font-family: "DINbek-bold";
  src: url("/recruit/assets/lib/font/DINBEK-Bold.woff") format("woff");
}

.scrlFade {
  position: relative;
  opacity: 0;
  top: 100px;
  transition: all 1s;
}

.scrlFade.is-moved {
  opacity: 1;
  top: 0;
}

/*
* pages
*/
.header {
  position: fixed;
  height: 85px;
  height: 5.66667vw;
  background: #fff;
  z-index: 90;
  width: 100%;
  top: 0;
}

@media screen and (max-width: 767px) {
  .header {
    height: 50px;
    top: 0;
    left: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .header .headerInner {
    margin: 0 25px;
    position: relative;
    height: 100%;
  }
}

.header .menu-trigger {
  position: absolute;
  right: 5px;
  top: 5px;
  transition: all .4s;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  background-color: #fff;
  padding: 10px;
  z-index: 100;
  z-index: 40;
}

.header .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.header .menu-trigger span:nth-of-type(1) {
  top: 10px;
  left: 20%;
  width: 60%;
}

.header .menu-trigger span:nth-of-type(2) {
  top: 47%;
  left: 20%;
  width: 60%;
}

.header .menu-trigger span:nth-of-type(3) {
  bottom: 10px;
  left: 20%;
  width: 60%;
}

.header .menu-trigger.is-active span {
  background-color: #000;
}

.header .menu-trigger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.header .menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.header .menu-trigger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}

@media screen and (min-width: 768px) {
  .header .triggerArea {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .header .triggerArea {
    position: fixed;
    top: 50px;
    height: 40vh;
    width: 100%;
    background: #fff;
    display: none;
  }
}

.header .triggerArea .pagination {
  opacity: 1;
  position: static;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .header .triggerArea .pagination {
    position: absolute;
    top: 45%;
    left: 70%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.header .triggerArea .pagination .paginationTitle {
  font-size: 16px;
  font-weight: bold;
}

.header .triggerArea .pagination span {
  opacity: 1;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .header .triggerArea .pagination span {
    font-size: 16px;
    font-size: 1.06667vw;
  }
}

.header .logo {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 386px;
  width: 25.73333vw;
}

.header .logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header .logo {
    width: 70%;
    top: 58%;
    left: 10px;
    max-width: 300px;
  }
}

.header .nav {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
}

@media screen and (max-width: 767px) {
  .header .nav {
    position: static;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    height: auto;
    margin: 0 auto;
  }
}

.header .nav a {
  display: inline-block;
  line-height: 1;
}

.header .nav a img {
  width: 100%;
}

.header .nav .twitter,
.header .nav .facebook {
  width: 40px;
  width: 2.66667vw;
  margin-left: 10px;
}

.header .nav__entry {
  width: 126px;
  width: 8.4vw;
  margin: 0px 0px 0px 35px;
  margin: 0vw 0vw 0vw 2.33333vw;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .header .nav__entry {
    width: 50%;
    margin: 0 auto;
  }
}

.header .nav__entry img {
  width: 100%;
}

.header #snsBox {
  position: absolute;
  top: 50%;
  display: flex;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15vw;
}

@media screen and (max-width: 767px) {
  .header #snsBox {
    position: static;
    margin-top: 40px;
    justify-content: center;
    margin-right: 71px;
  }
}

.header #snsBox li {
  width: 80px;
  height: 20px;
  position: relative;
  display: inline-block;
  padding-top: 2px;
}

@media screen and (max-width: 767px) {
  .header #snsBox li {
    margin: 0 auto;
  }
}

.header #snsBox li.fbBtn {
  top: -7px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .header #snsBox li.fbBtn {
    top: -6px;
    left: 1px;
  }
}

.nav {
  background: #FFF;
  width: 446px;
  width: 29.73333vw;
  height: 100%;
  position: fixed;
  top: 4.93333vw;
  right: -29.73333vw;
  z-index: 9999;
  transition-duration: 0.7s;
  transition: transform 0.6s cubic-bezier(0.87, 0, 0.13, 1);
}

.nav.open {
  transform: translateX(-29.73333vw);
}

@media screen and (max-width: 767px) {
  .nav {
    width: 59.46667vw;
    top: 9.86667vw;
    right: -59.46667vw;
  }

  .nav.open {
    transform: translateX(-59.46667vw);
  }
}

.nav__inner {
  overflow: auto;
  height: 100%;
}

.nav__inner ul {
  margin: 0 0 4vw;
}

.nav__inner ul li {
  border-bottom: 1px solid #c9caca;
}

.nav__inner ul li a {
  display: block;
  padding: 2.53333vw 1.6vw;
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__inner ul li a {
    padding: 5.06667vw 3.2vw;
  }
}

.nav__inner ul li a:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  height: 10px;
  margin: -8px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #6db328;
  border-right: solid 2px #6db328;
}

.nav__inner ul li:nth-child(1) a img {
  width: 14.66667vw;
}

@media screen and (max-width: 767px) {
  .nav__inner ul li:nth-child(1) a img {
    width: 40vw;
  }
}

.nav__inner ul li:nth-child(2) a img {
  width: 19.33333vw;
}

@media screen and (max-width: 767px) {
  .nav__inner ul li:nth-child(2) a img {
    width: 48vw;
  }
}

.nav__inner ul li:nth-child(3) a img {
  width: 14vw;
}

@media screen and (max-width: 767px) {
  .nav__inner ul li:nth-child(3) a img {
    width: 38.66667vw;
  }
}

.nav__inner ul li:nth-child(4) a img {
  width: 9.2vw;
}

@media screen and (max-width: 767px) {
  .nav__inner ul li:nth-child(4) a img {
    width: 24vw;
  }
}

.nav__inner>a {
  display: block;
  margin: 0 0 1.33333vw;
}

.nav__inner>a:last-child {
  margin: 0 0 13.33333vw;
}

.nav__inner>a img {
  display: block;
  width: 100%;
}

.nav__inner>a.disable {
  pointer-events: none;
}

.nav--2 {
  width: auto;
}

.footer {
  text-align: center;
  font-size: 10px;
  font-size: 0.66667vw;
  padding: 0px 0px 30px 0px;
  padding: 0vw 0vw 2vw 0vw;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer {
    background: #96c9a8;
    font-size: 10px;
  }
}

.footer .privacy {
  display: block;
  margin-bottom: 10px;
  color: #B5B5B6;
  text-decoration: none;
}

.footer__link {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0 0 20px;
}

.footer__link p {
  color: #4C4948;
}

.footer__link p a {
  color: #4C4948;
  transition: all 0.3s ease;
  text-decoration: underline;
}

.footer__link p a:hover {
  opacity: 0.7;
}

.footer__link p.u-wh {
  color: #fff;
}

.footer__link p.u-wh a {
  color: #fff;
}

.pageTop {
  position: fixed;
  bottom: 60px;
  right: 5%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-decoration: none;
  color: #4C4948;
  z-index: 80;
}

@media screen and (max-width: 767px) {
  .pageTop {
    font-size: 12px;
  }
}

.pageTop #pageTop-icon {
  position: absolute;
  width: 9px;
  height: 60px;
  bottom: -20px;
  left: 12px;
}

.pageTop .statePageTop {
  opacity: 0;
}

.pageTop .statePageTop img {
  height: 57px;
  position: relative;
  top: 10px;
}

.pageTop .stateScroll {
  position: relative;
  left: 0px;
  pointer-events: none;
}

.pageTop .stateScroll img {
  height: 35px;
}

.pageTop span {
  padding: 0 2px;
}

.pageTop span,
.pageTop svg {
  transition: all 0.4s;
}

.pageTop.is-hide #pageTop-icon,
.pageTop.is-hide .stateScroll,
.pageTop.is-hide .statePageTop {
  opacity: 0;
}

.pageTop.is-pageTop .stateScroll {
  opacity: 0;
}

.pageTop.is-pageTop .statePageTop {
  opacity: 1;
}

.pageTop.is-pageTop #pageTop-icon {
  opacity: 1;
  position: absolute;
  width: 9px;
  height: 50px;
  bottom: 65px;
  left: 10px;
}

@media screen and (max-width: 767px) {
  .pageTop.is-pageTop #pageTop-icon {
    width: 5px;
    bottom: 55px;
    left: 9px;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  -webkit-animation: loaderFade 1s ease 2.4s 1 forwards;
  animation: loaderFade 1s ease 2.4s 1 forwards;
}

.loader .loaderInner {
  position: absolute;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 186px;
  z-index: 100;
}

.loader .loaderInner img {
  width: 100%;
}

.loader .loaderInner .loaderIcon {
  opacity: 0;
  -webkit-animation: loader 1.4s ease 0.3s 1 forwards;
  animation: loader 1.4s ease 0.3s 1 forwards;
}